active set:激活集合。
UL interference: 上行干扰 。
C/I: C/I=(RSCP/ISCP)×(SF/2) 信干比。
Eb/No:每比特的信噪比,Eb是每一个码元的能量,No分母是噪声的功率谱密度。
Ec/Io: Ec/Io=RSCP/RSSI,体现了所接收信号的强度和干扰的水平。
AICH: Access Link Control Application Protocol,接入链路控制应用部分。
AMR:Adaptive Multi-Rate,自适应多速率。
BER :Bit Error Ratio,比特差错率(我在android的API上只看见GSM网路有,不知道W网是怎么弄的)。
BLER: Block Error Rate,误块率。
CRC: Cyclic Redundancy Code,循环冗余码。
CS: Circuit Switched ,电路交换。
VP: Video Phone,可视电话。
DL: Downlink (Forward Link),下行链路。
Dpcch: Dedicated Physical Control Channel,专用物理控制信道。
FER : Frame Error Rate,误帧率。
OVSF:Orthogonal Variable Spreading Factor,正交可变扩频因子。
P-CPICH: Primary Common Pilot Channel,主公共导频信道。
PRACH: Physical Random Access Channel,物理随机接入信道。
QoS: Quality of Service ,业务质量。
RNC: Radio Network Control,无线网络控制器。
NodeB: WCDMA Base Station ,WCDMA基站。
RSCP: Received Signal Code Power,接收信号码功率。
RSSI:Received Signal Strength Indicator,接收信号强度指示。
RTWP: Received Total Wide band Power,接收总带宽功率。
SF: Spreading Factor,扩频因子。
SIR:Signal-to-Interference Ratio,信干比。
TPC: Transmit Power Control,发射功率控制。
UE :User Equipment,用户设备。
WCDMA: Wideband Code Division Multiple Access,宽带码分多址。
1.禁用Edit功能
tabBarController.customizableViewControllers = nil;
2.修改more中tabbar背景样式
tabBarController.moreNavigationController.navigationBar.barStyle=UIBarStyleBlackOpaque;
1.取消cell点击变色
cell.selectionStyle = UITableViewCellSelectionStyleNone;
2.禁止边缘滑动(类似到顶端仍可拖动一小节)
talbeview.bounces = NO;
3.设置分界线颜色
tableView.separatorColor = [UIColor clearColor];//透明,达到没有分界线效果
4.标题
Label加载在View上 return View时 才能实现自定义Label的frame, return label不能改变frame
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
NSString *HeaderString = nil;
switch (section) {
case 0:
HeaderString=@"1";
break;
case 1:
HeaderString= @"2";
break;
default:
HeaderString= @"3";
break;
}
UIView *headerView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 40)] autorelease];
headerView.backgroundColor = [UIColor clearColor];
UILabel *HeaderLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 0, 200, 40)];
HeaderLabel.backgroundColor = [UIColor clearColor];
HeaderLabel.font = [UIFont boldSystemFontOfSize:17];
HeaderLabel.textColor = [UIColor whiteColor];
HeaderLabel.text = HeaderString;
[headerView addSubview:HeaderLabel];
[HeaderLabel release];
return headerView;
}
同理:
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section